php forum
php mysql forum
php mysql smarty
 
Topic Options
#317632 - 10/27/08 07:51 AM [7.4] Keep log of custom title changes
blaaskaak Offline
Enthusiast

Registered: 02/25/07
Posts: 329
Loc: The Netherlands
We work with a system where users request a title in a topic, and we set it for them.

Since it's a favor, and something they can demand we put restrictions on how often they can change that title.

This hack updates the usernotes of a user with every membertitle change so we can keep track of it.

open /admin/changeuser.php
find:
Code:
if (preg_match("/Moderator/",$user['USER_MEMBERSHIP_LEVEL'])) {
	$user_title = preg_replace("<","&lt;",$user_title);
} // end if


Replace with:
Code:
if (preg_match("/Moderator/",$user['USER_MEMBERSHIP_LEVEL'])) {
	$usertitle = preg_replace("<","&lt;",$usertitle);
} // end if

// Get current member title on the user we are editing
$query = "
	select USER_CUSTOM_TITLE
	from {$config['TABLE_PREFIX']}USER_PROFILE
	where USER_ID = ?
";
$sth = $dbh->do_placeholder_query($query,array($uid),__LINE__,__FILE__);
list($current_title) = $dbh->fetch_array($sth);

if ($current_title != $usertitle) {
	$notes .="\n".date("d/m/Y")." customtitle change (\"$current_title\" => \"$usertitle\")";
}


You might want to change the date format.
_________________________

Top
#317636 - 10/28/08 08:56 PM Re: [7.4] Keep log of custom title changes [Re: blaaskaak]
AllenAyres Offline

I type Like navaho

Registered: 03/10/00
Posts: 25580
Loc: Texas
Pretty cool Yarp, thanks thumbsup
_________________________
- Allen wavey
- What Drives You?

Top



Moderator:  sirdude 
Latest Posts
[7.2.1] - Naked shoutbox
by bellaonline
05/05/12 05:00 PM
[7.x] Stop Forum Spam Integration v0.4
by bellaonline
05/05/12 03:53 PM
Shout Box

(Views)Popular Topics
Known public proxy servers 1689885
Integrated Index Page (IIP) 5.3.1 555705
Finished-[6.5.2] Games Arcade Deluxe v1.9 501236
Integrated Index Page (IIP) 5.1.1 415112
TLD Bv2.1 Released - Threads Links Directory 396822
[6.0x] Who's Online 4.0.0 [Finished] 389412
Finished-[6.5.1] Integrated Index Page (IIP) 6.5 330423
Q & A 298663
Slash UBB 266936
[6.3.x] [beta] Hit Hack 2.0 227970
Forum Stats
13621 Members
59 Forums
37191 Topics
295716 Posts

Max Online: 686 @ 06/28/07 07:04 AM

 

 

 
fusionbb message board php hacks